Micron Document
`:top
`!Kruskal's algorithm`!`:cite-ref-1[`F5bf`_`[1`#cite-note-1]`_`f] finds a `F33f`_`[minimum spanning forest`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Minimum_spanning_tree]`_`f of an undirected `F33f`_`[edge-weighted graph`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Weighted_graph]`_`f. If the graph is `F33f`_`[connected`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Connectivity_(graph_theory)]`_`f, it finds a `F33f`_`[minimum spanning tree`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Minimum_spanning_tree]`_`f. It is a `F33f`_`[greedy algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Greedy_algorithm]`_`f that in each step adds to the forest the lowest-weight edge that will not form a `F33f`_`[cycle`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Cycle_(graph_theory)]`_`f.`:cite-ref-0-2-0[`F5bf`_`[2`#cite-note-0-2]`_`f] The key steps of the algorithm are `F33f`_`[sorting`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Sorting]`_`f and the use of a `F33f`_`[disjoint-set data structure`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Disjoint-set_data_structure]`_`f to detect cycles. Its running time is dominated by the time to sort all of the graph edges by their weight.

A minimum spanning tree of a connected weighted graph is a connected subgraph, without cycles, for which the sum of the weights of all the edges in the subgraph is minimal. For a disconnected graph, a minimum spanning forest is composed of a minimum spanning tree for each `F33f`_`[connected component`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Connected_component_(graph_theory)]`_`f.

This algorithm was first published by `F33f`_`[Joseph Kruskal`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Joseph_Kruskal]`_`f in 1956,`:cite-ref-3[`F5bf`_`[3`#cite-note-3]`_`f] and was rediscovered soon afterward by `F33f`_`[Loberman & Weinberger (1957)`#citereflobermanweinberger1957]`_`f.`:cite-ref-4[`F5bf`_`[4`#cite-note-4]`_`f] Other algorithms for this problem include `F33f`_`[Prim's algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Prim's_algorithm]`_`f, `F33f`_`[Borůvka's algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Borůvka's_algorithm]`_`f, and the `F33f`_`[reverse-delete algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Reverse-delete_algorithm]`_`f.

>>Contents

• `F0af`_`[Algorithm`#algorithm]`_`f
• `F0af`_`[Pseudocode`#pseudocode]`_`f
• `F0af`_`[Complexity`#complexity]`_`f
• `F0af`_`[Example`#example]`_`f
• `F0af`_`[Proof of correctness`#proof-of-correctness]`_`f
• `F0af`_`[Spanning tree`#spanning-tree]`_`f
• `F0af`_`[Minimality`#minimality]`_`f
• `F0af`_`[Parallel algorithm`#parallel-algorithm]`_`f
• `F0af`_`[See also`#see-also]`_`f
• `F0af`_`[References`#references]`_`f
• `F0af`_`[External links`#external-links]`_`f

-─

>>Algorithm

The algorithm performs the following steps:

• Create a forest (a set of trees) initially consisting of a separate single-vertex tree for each vertex in the input graph.
• Sort the graph edges by weight.
• Loop through the edges of the graph, in ascending sorted order by their weight. For each edge:

• Test whether adding the edge to the current forest would create a cycle.
• If not, add the edge to the forest, combining two trees into a single tree.

At the termination of the algorithm, the forest forms a minimum spanning forest of the graph. If the graph is connected, the forest has a single component and forms a minimum spanning tree.

>>Pseudocode

The following code is implemented with a `F33f`_`[disjoint-set data structure`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Disjoint-set_data_structure]`_`f. It represents the forest `*F`* as a set of undirected edges, and uses the disjoint-set data structure to efficiently determine whether two vertices are part of the same tree.

`B100`F9d9function Kruskal(Graph G) is`f`b
`B100`F9d9 F:= ∅`f`b
`B100`F9d9 for each v in G.Vertices do`f`b
`B100`F9d9 MAKE-SET(v)`f`b
`B100`F9d9`f`b
`B100`F9d9 for each {u, v} in G.Edges ordered by increasing weight({u, v}) do`f`b
`B100`F9d9 if FIND-SET(u) ≠ FIND-SET(v) then`f`b
`B100`F9d9 F := F ∪ { {u, v} }`f`b
`B100`F9d9 UNION(FIND-SET(u), FIND-SET(v))`f`b
`B100`F9d9 return F`f`b

>>Complexity

For a graph with E edges and V vertices, Kruskal's algorithm can be shown to run in time `*O`*(`*E`* log `*E`*) time, with simple data structures. This time bound is often written instead as `*O`*(`*E`* log `*V`*), which is equivalent for graphs with no isolated vertices, because for these graphs `*V`*/2 ≤ `*E`* < `*V`*2 and the logarithms of V and E are again within a constant factor of each other.

To achieve this bound, first sort the edges by weight using a `F33f`_`[comparison sort`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Comparison_sort]`_`f in `*O`*(`*E`* log `*E`*) time. Once sorted, it is possible to loop through the edges in sorted order in constant time per edge. Next, use a `F33f`_`[disjoint-set data structure`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Disjoint-set_data_structure]`_`f, with a set of vertices for each component, to keep track of which vertices are in which components. Creating this structure, with a separate set for each vertex, takes V operations and `*O`*(`*V`*) time. The final iteration through all edges performs two find operations and possibly one union operation per edge. These operations take `F33f`_`[amortized time`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Amortized_time]`_`f `*O`*(`*α`*(`*V`*)) time per operation, giving worst-case total time `*O`*(`*E`* `*α`*(`*V`*)) for this loop, where α is the extremely slowly growing `F33f`_`[inverse Ackermann function`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Inverse_Ackermann_function]`_`f. This part of the time bound is much smaller than the time for the sorting step, so the total time for the algorithm can be simplified to the time for the sorting step.

In cases where the edges are already sorted, or where they have small enough integer weight to allow `F33f`_`[integer sorting`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Integer_sorting]`_`f algorithms such as `F33f`_`[counting sort`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Counting_sort]`_`f or `F33f`_`[radix sort`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Radix_sort]`_`f to sort them in linear time, the disjoint set operations are the slowest remaining part of the algorithm and the total time is `*O`*(`*E`* `*α`*(`*V`*)).

>>Example

`t
| Image | Description |
|---|---|
| | AD and CE are the shortest edges, with length 5, and AD has been arbitrarily chosen, so it is highlighted. |
| | CE is now the shortest edge that does not form a cycle, with length 5, so it is highlighted as the second edge. |
| | The next edge, DF with length 6, is highlighted using much the same method. |
| | The next-shortest edges are AB and BE , both with length 7. AB is chosen arbitrarily, and is highlighted. The edge BD has been highlighted in red, because there already exists a path (in green) between B and D , so it would form a cycle ( ABD ) if it were chosen. |
| | The process continues to highlight the next-smallest edge, BE with length 7. Many more edges are highlighted in red at this stage: BC because it would form the loop BCE , DE because it would form the loop DEBA , and FE because it would form FEBAD . |
| | Finally, the process finishes with the edge EG of length 9, and the minimum spanning tree is found. |
`t

>>Proof of correctness

The proof consists of two parts. First, it is proved that the algorithm produces a `F33f`_`[spanning tree`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Spanning_tree]`_`f. Second, it is proved that the constructed spanning tree is of minimal weight.

>>>Spanning tree

Let G {\\displaystyle G} be a connected, weighted graph and let Y {\\displaystyle Y} be the subgraph of G {\\displaystyle G} produced by the algorithm. Y {\\displaystyle Y} cannot have a cycle, as by definition an edge is not added if it results in a cycle. Y {\\displaystyle Y} cannot be disconnected, since the first encountered edge that joins two components of Y {\\displaystyle Y} would have been added by the algorithm. Thus, Y {\\displaystyle Y} is a spanning tree of G {\\displaystyle G} .

>>>Minimality

We show that the following proposition `*`!P`!`* is true by `F33f`_`[induction`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Mathematical_induction]`_`f: If `*F`* is the set of edges chosen at any stage of the algorithm, then there is some minimum spanning tree that contains `*F`* and none of the edges rejected by the algorithm.

• Clearly `*`!P`!`* is true at the beginning, when `*F`* is empty: any minimum spanning tree will do, and there exists one because a weighted connected graph always has a minimum spanning tree.
• Now assume `*`!P`!`* is true for some non-final edge set `*F`* and let `*T`* be a minimum spanning tree that contains `*F`*.

• If the next chosen edge `*e`* is also in `*T`*, then `*`!P`!`* is true for `*F`* + `*e`*.
• Otherwise, if `*e`* is not in `*T`* then `*T`* + `*e`* has a cycle `*C`*. The cycle `*C`* contains edges which do not belong to `*F`* + `*e`*, since `*e`* does not form a cycle when added to `*F`* but does in `*T`*. Let `*f`* be an edge which is in `*C`* but not in `*F`* + `*e`*. Note that `*f`* also belongs to `*T`*, since `*f`* belongs to `*T`* + `*e`* but not `*F`* + `*e`*. By `*`!P`!`*, `*f`* has not been considered by the algorithm. `*f`* must therefore have a weight at least as large as `*e`*. Then `*T`* − `*f`* + `*e`* is a tree, and it has the same or less weight as `*T`*. However since `*T`* is a minimum spanning tree then `*T`* − `*f`* + `*e`* has the same weight as `*T`*, otherwise we get a contradiction and `*T`* would not be a minimum spanning tree. So `*T`* − `*f`* + `*e`* is a minimum spanning tree containing `*F`* + `*e`* and again `*`!P`!`* holds.

• Therefore, by the principle of induction, `*`!P`!`* holds when `*F`* has become a spanning tree, which is only possible if `*F`* is a minimum spanning tree itself.

>>Parallel algorithm

Kruskal's algorithm is inherently sequential and hard to parallelize. It is, however, possible to perform the initial sorting of the edges in parallel or, alternatively, to use a parallel implementation of a `F33f`_`[binary heap`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Binary_heap]`_`f to extract the minimum-weight edge in every iteration.`:cite-ref-5[`F5bf`_`[5`#cite-note-5]`_`f] As parallel sorting is possible in time O ( n ) {\\displaystyle O(n)} on O ( log ⁡ ⁡ n ) {\\displaystyle O(\\log n)} processors,`:cite-ref-6[`F5bf`_`[6`#cite-note-6]`_`f] the runtime of Kruskal's algorithm can be reduced to `*O`*(`*E`* α(`*V`*)), where α again is the inverse of the single-valued `F33f`_`[Ackermann function`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Ackermann_function]`_`f.

A variant of Kruskal's algorithm, named Filter-Kruskal, has been described by Osipov et al.`:cite-ref-osipov2009-7-0[`F5bf`_`[7`#cite-note-osipov2009-7]`_`f] and is better suited for parallelization. The basic idea behind Filter-Kruskal is to partition the edges in a similar way to `F33f`_`[quicksort`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Quicksort]`_`f and filter out edges that connect vertices of the same tree to reduce the cost of sorting. The following `F33f`_`[pseudocode`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Pseudocode]`_`f demonstrates this.

`B100`F9d9function filter_kruskal(G) is`f`b
`B100`F9d9 if |G.E| < kruskal_threshold:`f`b
`B100`F9d9 return kruskal(G)`f`b
`B100`F9d9 pivot = choose_random(G.E)`f`b
`B100`F9d9 E≤, E> = partition(G.E, pivot)`f`b
`B100`F9d9 A = filter_kruskal(E≤)`f`b
`B100`F9d9 E> = filter(E>)`f`b
`B100`F9d9 A = A ∪ filter_kruskal(E>)`f`b
`B100`F9d9 return A`f`b
`B100`F9d9`f`b
`B100`F9d9function partition(E, pivot) is`f`b
`B100`F9d9 E≤ = ∅, E> = ∅`f`b
`B100`F9d9 foreach (u, v) in E do`f`b
`B100`F9d9 if weight(u, v) ≤ pivot then`f`b
`B100`F9d9 E≤ = E≤ ∪ {(u, v)}`f`b
`B100`F9d9 else`f`b
`B100`F9d9 E> = E> ∪ {(u, v)}`f`b
`B100`F9d9 return E≤, E>`f`b
`B100`F9d9`f`b
`B100`F9d9function filter(E) is`f`b
`B100`F9d9 Ef = ∅`f`b
`B100`F9d9 foreach (u, v) in E do`f`b
`B100`F9d9 if find_set(u) ≠ find_set(v) then`f`b
`B100`F9d9 Ef = Ef ∪ {(u, v)}`f`b
`B100`F9d9 return Ef`f`b

Filter-Kruskal lends itself better to parallelization as sorting, filtering, and partitioning can easily be performed in parallel by distributing the edges between the processors.`:cite-ref-osipov2009-7-1[`F5bf`_`[7`#cite-note-osipov2009-7]`_`f]

Finally, other variants of a parallel implementation of Kruskal's algorithm have been explored. Examples include a scheme that uses helper threads to remove edges that are definitely not part of the MST in the background,`:cite-ref-8[`F5bf`_`[8`#cite-note-8]`_`f] and a variant which runs the sequential algorithm on `*p`* subgraphs, then merges those subgraphs until only one, the final MST, remains.`:cite-ref-9[`F5bf`_`[9`#cite-note-9]`_`f]

>>See also

• `F33f`_`[Prim's algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Prim's_algorithm]`_`f
• `F33f`_`[Dijkstra's algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Dijkstra's_algorithm]`_`f
• `F33f`_`[Borůvka's algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Borůvka's_algorithm]`_`f
• `F33f`_`[Reverse-delete algorithm`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Reverse-delete_algorithm]`_`f
• `F33f`_`[Single-linkage clustering`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Single-linkage_clustering]`_`f
• `F33f`_`[Greedy geometric spanner`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Greedy_geometric_spanner]`_`f

>>References

`:cite-note-1`!1.`! `F0af`_`[↑`#cite-ref-1]`_`f `:citerefkleinberg2006`aKleinberg, Jon (2006). `*Algorithm design`*. Éva Tardos. Boston: Pearson/Addison-Wesley. pp. 142–151. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 0-321-29535-8. `F33f`_`[OCLC`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=OCLC_(identifier)]`_`f 57422612.
`:cite-note-0-2`!2.`! `F0af`_`[↑`#cite-ref-0-2-0]`_`f `:citerefcormencharles-e-leiserson-ronald-l-rivest-clifford-stein2009`aCormen, Thomas; Charles E Leiserson, Ronald L Rivest, Clifford Stein (2009). `*Introduction To Algorithms`* (Third ed.). MIT Press. pp. 631. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-0262258104.`B100`F9d9{{cite book}}`f`b: CS1 maint: multiple names: authors list (link)
`:cite-note-3`!3.`! `F0af`_`[↑`#cite-ref-3]`_`f `:citerefkruskal1956`a`F33f`_`[Kruskal, J. B.`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Joseph_Kruskal]`_`f (1956). "On the shortest spanning subtree of a graph and the traveling salesman problem". `*`F33f`_`[Proceedings of the American Mathematical Society`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Proceedings_of_the_American_Mathematical_Society]`_`f`*. `!7`! (1): 48–50. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1090/S0002-9939-1956-0078686-7. `F33f`_`[JSTOR`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=JSTOR_(identifier)]`_`f 2033241.
`:cite-note-4`!4.`! `F0af`_`[↑`#cite-ref-4]`_`f `:citereflobermanweinberger1957`aLoberman, H.; Weinberger, A. (October 1957). "Formal Procedures for connecting terminals with a minimum total wire length". `*Journal of the ACM`*. `!4`! (4): 428–437. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1145/320893.320896. `F33f`_`[S2CID`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=S2CID_(identifier)]`_`f 7320964.
`:cite-note-5`!5.`! `F0af`_`[↑`#cite-ref-5]`_`f `:citerefquinndeo1984`aQuinn, Michael J.; Deo, Narsingh (1984). "Parallel graph algorithms". `*ACM Computing Surveys`*. `!16`! (3): 319–348. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1145/2514.2515. `F33f`_`[S2CID`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=S2CID_(identifier)]`_`f 6833839.
`:cite-note-6`!6.`! `F0af`_`[↑`#cite-ref-6]`_`f `:citerefgramaguptakarypiskumar2003`aGrama, Ananth; Gupta, Anshul; Karypis, George; Kumar, Vipin (2003). `*Introduction to Parallel Computing`*. Addison-Wesley. pp. 412–413. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-0201648652.
`:cite-note-osipov2009-7`!7.`! `F0af`_`[↑`#cite-ref-osipov2009-7-0]`_`f `:citerefosipovsanderssingler2009`aOsipov, Vitaly; Sanders, Peter; Singler, Johannes (2009). "The filter-kruskal minimum spanning tree algorithm". `*Proceedings of the Eleventh Workshop on Algorithm Engineering and Experiments (ALENEX). Society for Industrial and Applied Mathematics`*: 52–61. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1137/1.9781611972894.5. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-0-89871-930-7.
`:cite-note-8`!8.`! `F0af`_`[↑`#cite-ref-8]`_`f `:citerefkatsigiannisanastopouloskonstantinoskoziris2012`aKatsigiannis, Anastasios; Anastopoulos, Nikos; Konstantinos, Nikas; Koziris, Nectarios (2012). "An Approach to Parallelize Kruskal's Algorithm Using Helper Threads". `*2012 IEEE 26th International Parallel and Distributed Processing Symposium Workshops & PhD Forum`* (PDF). pp. 1601–1610. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1109/IPDPSW.2012.201. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-1-4673-0974-5. `F33f`_`[S2CID`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=S2CID_(identifier)]`_`f 14430930.
`:cite-note-9`!9.`! `F0af`_`[↑`#cite-ref-9]`_`f `:citereflon-ar-krbi-bala-2014`aLončar, Vladimir; Škrbić, Srdjan; Balaž, Antun (2014). "Parallelization of Minimum Spanning Tree Algorithms Using Distributed Memory Architectures". `*Transactions on Engineering Technologies`*. pp. 543–554. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1007/978-94-017-8832-8_39. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-94-017-8831-1.

• `F33f`_`[Thomas H. Cormen`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Thomas_H._Cormen]`_`f, `F33f`_`[Charles E. Leiserson`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Charles_E._Leiserson]`_`f, `F33f`_`[Ronald L. Rivest`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Ronald_L._Rivest]`_`f, and `F33f`_`[Clifford Stein`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Clifford_Stein]`_`f. `*`F33f`_`[Introduction to Algorithms`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Introduction_to_Algorithms]`_`f`*, Second Edition. MIT Press and McGraw-Hill, 2001. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 0-262-03293-7. Section 23.2: The algorithms of Kruskal and Prim, pp. 567–574.
• `F33f`_`[Michael T. Goodrich`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Michael_T._Goodrich]`_`f and `F33f`_`[Roberto Tamassia`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Roberto_Tamassia]`_`f. `*Data Structures and Algorithms in Java`*, Fourth Edition. John Wiley & Sons, Inc., 2006. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 0-471-73884-0. Section 13.7.1: Kruskal's Algorithm, pp. 632..

>>External links

• Data for the article's example.
• Gephi Plugin For Calculating a Minimum Spanning Tree source code.
• Kruskal's Algorithm with example and program in c++
• Kruskal's Algorithm code in C++ as applied to random numbers
• Kruskal's Algorithm code in Python with explanation

`c`F0af`_`[↑ Back to top`#top]`_`f`a